home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / clipmarks-3.5.0-fx.xpi / chrome / clipmarks.jar / content / please-clip.xul < prev    next >
Extensible Markup Language  |  2007-12-05  |  742b  |  24 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  4.  
  5. <dialog id="Clipmarks_PleaseClipSomething" title="Please Clip Something"
  6.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  7.         buttons="accept" buttonlabelaccept="OK"
  8.         ondialogaccept="return accept_click();"
  9.         onload="window_load();">
  10.  
  11. <script>
  12. function window_load() {
  13.     document.documentElement.getButton("accept").focus();
  14. }
  15.  
  16. function accept_click() {
  17.     return true;
  18. }
  19. </script>
  20.  
  21. <image src="http://content.clipmarks.com/images/please_clip_something.gif" width="296" height="287" style="cursor:pointer;" onclick="window.opener.Clipmarks_Help();window.close();" />
  22.  
  23. </dialog>
  24.